home *** CD-ROM | disk | FTP | other *** search
/ CDUTIL 13 / CDUTIL #13 Julio 1995.iso / windows / dbfast20 / misc / bucle1.prg < prev    next >
Encoding:
Text File  |  1993-11-16  |  62 b   |  8 lines

  1. FOR k = 1 TO 50
  2.     ? k
  3.     IF k = 25
  4.         BREAK
  5.     ENDIF
  6. NEXT k
  7.  
  8.